home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / system / pc_dcl.zip / HELP / CREATE.HTX < prev    next >
Text File  |  1991-10-15  |  2KB  |  75 lines

  1. CREATE
  2.  
  3.  CREATE
  4.  
  5.   File
  6.       Creates  a  sequential  text file (or files). Specify the content of
  7.       the file on the lines following the command, one record per line. In
  8.       interactive mode, terminate the file input with CTRL/Z. In a command
  9.       procedure, terminate the file input with a  line  beginning  with  a
  10.       dollar sign in column 1 (or with the end of the command procedure).
  11.   
  12.   Directory
  13.       Creates a new directoy or subdirectory. The /DIRECTORY qualifier is
  14.       required.
  15.  
  16.     Format:
  17.  
  18.       CREATE  file-spec
  19.  
  20.     Additional information :
  21.  
  22.        file-spec create.file-spec     /DIR create./dir    /LOG create./dir
  23.        Examples create.examples
  24. 
  25. create.file-spec
  26.  
  27.  CREATE
  28.  
  29.  
  30.        file-spec
  31.  
  32.         Specifies  the  name  of  the  files  or  directory  to  be created.
  33.         Wildcard characters are not allowed. If you  omit  either  the  file
  34.         name  or  the  file  type,  the  CREATE  command does not supply any
  35.         defaults. The file name or file type is null. If the specified  file
  36.         already exists, it is overwritten.
  37.  
  38. create./dir
  39.  
  40.  CREATE
  41.  
  42.       /DIRECTORY
  43.  
  44.         Instructs the CREATE command to create a new directory or subdirectory.
  45.  
  46.  
  47.  
  48.  CREATE
  49.  
  50.       /LOG
  51.  
  52.         Controls whether the CREATE command displays the file  specification
  53.         of the file that it has created.
  54.  
  55. create.examples
  56.  
  57.  CREATE
  58.  
  59.     Examples
  60.  
  61.  
  62.         1.   $ CREATE   A.DAT
  63.              Input line one for A.DAT...
  64.              Input line two for A.DAT...
  65.                 .
  66.                 .
  67.                 .
  68.              ^Z
  69.              $
  70.  
  71.         After you issue the CREATE command from  the  terminal,  the  system
  72.         reads  input  lines  into  the  sequential  file  A.DAT until CTRL/Z
  73.         terminates the input.
  74. 
  75.